Quartz can generate a list of recent notes based on some filtering and sorting criteria. Though this component isn’t included in any [[layout]] by default, you can add it by using Component.RecentNotes in quartz.layout.ts.
Component.RecentNotes({ title: "Recent writing" })Component.RecentNotes({ limit: 5 })Component.RecentNotes({ showTags: false })Component.RecentNotes({ linkToMore: "tags/components" }). This field should be a full slug to a page that exists.Component.RecentNotes({ filter: someFilterFunction }). The filter function should be a function that has the signature (f: QuartzPluginData) => boolean.Component.RecentNotes({ sort: someSortFunction }). By default, Quartz will sort by date and then tie break lexographically. The sort function should be a function that has the signature (f1: QuartzPluginData, f2: QuartzPluginData) => number. See byDateAndAlphabetical in quartz/components/PageList.tsx for an example.quartz/components/RecentNotes.tsxquartz/components/styles/recentNotes.scss